home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / GIMP 2.6.8 / gimp-2.6.8-i686-setup.exe / {app} / share / gimp / 2.0 / scripts / beveled-button.scm < prev    next >
Text File  |  2009-12-15  |  6KB  |  162 lines

  1. ; GIMP - The GNU Image Manipulation Program
  2. ; Copyright (C) 1995 Spencer Kimball and Peter Mattis
  3. ;
  4. ; Button00 --- create a simple beveled Web button
  5. ; Copyright (C) 1997 Federico Mena Quintero
  6. ; federico@nuclecu.unam.mx
  7. ;
  8. ; This program is free software; you can redistribute it and/or modify
  9. ; it under the terms of the GNU General Public License as published by
  10. ; the Free Software Foundation; either version 2 of the License, or
  11. ; (at your option) any later version.
  12. ;
  13. ; This program is distributed in the hope that it will be useful,
  14. ; but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16. ; GNU General Public License for more details.
  17. ;
  18. ; You should have received a copy of the GNU General Public License
  19. ; along with this program; if not, write to the Free Software
  20. ; Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  21. ; ************************************************************************
  22. ; Changed on Feb 4, 1999 by Piet van Oostrum <piet@cs.uu.nl>
  23. ; For use with GIMP 1.1.
  24. ; All calls to gimp-text-* have been converted to use the *-fontname form.
  25. ; The corresponding parameters have been replaced by an SF-FONT parameter.
  26. ; ************************************************************************
  27.  
  28.  
  29. (define (text-width extents)
  30.   (car extents))
  31.  
  32. (define (text-height extents)
  33.   (cadr extents))
  34.  
  35. (define (text-ascent extents)
  36.   (caddr extents))
  37.  
  38. (define (text-descent extents)
  39.   (cadr (cddr extents)))
  40.  
  41. (define (blend-bumpmap img
  42.                        drawable
  43.                        x1
  44.                        y1
  45.                        x2
  46.                        y2)
  47.   (gimp-edit-blend drawable FG-BG-RGB-MODE DARKEN-ONLY-MODE
  48.                    GRADIENT-LINEAR 100 0 REPEAT-NONE FALSE
  49.                    FALSE 0 0 TRUE
  50.                    x1 y1 x2 y2))
  51.  
  52. (define (script-fu-button00 text
  53.                             size
  54.                             font
  55.                             ul-color
  56.                             lr-color
  57.                             text-color
  58.                             padding
  59.                             bevel-width
  60.                             pressed)
  61.   (let* (
  62.         (text-extents (gimp-text-get-extents-fontname text
  63.                                                       size
  64.                                                       PIXELS
  65.                                                       font))
  66.         (ascent (text-ascent text-extents))
  67.         (descent (text-descent text-extents))
  68.  
  69.         (img-width (+ (* 2 (+ padding bevel-width))
  70.                       (text-width text-extents)))
  71.         (img-height (+ (* 2 (+ padding bevel-width))
  72.                        (+ ascent descent)))
  73.  
  74.         (img (car (gimp-image-new img-width img-height RGB)))
  75.  
  76.         (bumpmap (car (gimp-layer-new img
  77.                                       img-width img-height RGBA-IMAGE
  78.                                       "Bumpmap" 100 NORMAL-MODE)))
  79.         (gradient (car (gimp-layer-new img
  80.                                        img-width img-height RGBA-IMAGE
  81.                                        "Gradient" 100 NORMAL-MODE)))
  82.         )
  83.  
  84.     (gimp-context-push)
  85.  
  86.     (gimp-image-undo-disable img)
  87.  
  88.     ; Create bumpmap layer
  89.  
  90.     (gimp-image-add-layer img bumpmap -1)
  91.     (gimp-context-set-foreground '(0 0 0))
  92.     (gimp-context-set-background '(255 255 255))
  93.     (gimp-edit-fill bumpmap BACKGROUND-FILL)
  94.  
  95.     (gimp-rect-select img 0 0 bevel-width img-height CHANNEL-OP-REPLACE FALSE 0)
  96.     (blend-bumpmap img bumpmap 0 0 (- bevel-width 1) 0)
  97.  
  98.     (gimp-rect-select img 0 0 img-width bevel-width CHANNEL-OP-REPLACE FALSE 0)
  99.     (blend-bumpmap img bumpmap 0 0 0 (- bevel-width 1))
  100.  
  101.     (gimp-rect-select img (- img-width bevel-width) 0 bevel-width img-height CHANNEL-OP-REPLACE FALSE 0)
  102.     (blend-bumpmap img bumpmap (- img-width 1) 0 (- img-width bevel-width) 0)
  103.  
  104.     (gimp-rect-select img 0 (- img-height bevel-width) img-width bevel-width CHANNEL-OP-REPLACE FALSE 0)
  105.     (blend-bumpmap img bumpmap 0 (- img-height 1) 0 (- img-height bevel-width))
  106.  
  107.     (gimp-selection-none img)
  108.  
  109.     ; Create gradient layer
  110.  
  111.     (gimp-image-add-layer img gradient -1)
  112.     (gimp-context-set-foreground ul-color)
  113.     (gimp-context-set-background lr-color)
  114.  
  115.     (gimp-edit-blend gradient FG-BG-RGB-MODE NORMAL-MODE
  116.                      GRADIENT-LINEAR 100 0 REPEAT-NONE FALSE
  117.                      FALSE 0 0 TRUE
  118.                      0 0 (- img-width 1) (- img-height 1))
  119.  
  120.     (plug-in-bump-map RUN-NONINTERACTIVE img gradient bumpmap
  121.                       135 45 bevel-width 0 0 0 0 TRUE pressed 0)
  122.  
  123.     ; Create text layer
  124.  
  125.     (gimp-context-set-foreground text-color)
  126.     (let ((textl (car (gimp-text-fontname
  127.                        img -1 0 0 text 0 TRUE size PIXELS font))))
  128.       (gimp-layer-set-offsets textl
  129.                               (+ bevel-width padding)
  130.                               (+ bevel-width padding descent)))
  131.  
  132.     ; Done
  133.  
  134.     (gimp-selection-none img)
  135.     (gimp-image-undo-enable img)
  136.     (gimp-display-new img)
  137.  
  138.     (gimp-context-pop)
  139.   )
  140. )
  141.  
  142. (script-fu-register "script-fu-button00"
  143.   _"Simple _Beveled Button..."
  144.   _"Create a simple, beveled button graphic for webpages"
  145.   "Federico Mena Quintero"
  146.   "Federico Mena Quintero"
  147.   "June 1997"
  148.   ""
  149.   SF-STRING     _"Text"               "Hello world!"
  150.   SF-ADJUSTMENT _"Font size (pixels)" '(16 2 100 1 1 0 1)
  151.   SF-FONT       _"Font"               "Sans"
  152.   SF-COLOR      _"Upper-left color"   '(0 255 127)
  153.   SF-COLOR      _"Lower-right color"  '(0 127 255)
  154.   SF-COLOR      _"Text color"         "black"
  155.   SF-ADJUSTMENT _"Padding"            '(2 1 100 1 10 0 1)
  156.   SF-ADJUSTMENT _"Bevel width"        '(4 1 100 1 10 0 1)
  157.   SF-TOGGLE     _"Pressed"            FALSE
  158. )
  159.  
  160. (script-fu-menu-register "script-fu-button00"
  161.                          "<Image>/File/Create/Buttons")
  162.